home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Multimedia Selection
/
Multimedia Selection Volume One - CD-ROM
/
MULTIMEDIA SELECTION____________.ISO
/
programz
/
c
/
cuj0908.arj
/
9N08012A
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-07-10
|
184 b
|
9 lines
/* floor function */
#include "xmath.h"
double (floor)(double x)
{ /* compute floor(x) */
return (_Dint(&x, 0) < 0 && x < 0.0 ? x - 1.0 : x);
}